Loosen the dependency versions in Cargo.toml
authorJakub Bukaj <jakub.adam.bukaj@gmail.com>
Sun, 26 Apr 2015 21:42:55 +0000 (23:42 +0200)
committerJakub Bukaj <jakub.adam.bukaj@gmail.com>
Fri, 1 May 2015 11:25:09 +0000 (13:25 +0200)
Cargo.lock
Cargo.toml
src/rustversion.txt

index a7819cdd8c289eb334762c803092aea67b319b44..5a0710e238cb5fe28de8802df36c2e93c384bbfe 100644 (file)
@@ -4,11 +4,11 @@ version = "0.2.0"
 dependencies = [
  "advapi32-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  "curl 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)",
- "docopt 0.6.63 (registry+https://github.com/rust-lang/crates.io-index)",
+ "docopt 0.6.64 (registry+https://github.com/rust-lang/crates.io-index)",
  "env_logger 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  "flate2 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
  "git2 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)",
- "git2-curl 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
+ "git2-curl 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
  "glob 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)",
  "hamcrest 0.1.0 (git+https://github.com/carllerche/hamcrest-rust.git)",
  "kernel32-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -50,7 +50,7 @@ dependencies = [
  "curl-sys 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
  "libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
  "log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
- "openssl-sys 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
+ "openssl-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
  "url 0.2.31 (registry+https://github.com/rust-lang/crates.io-index)",
 ]
 
@@ -61,17 +61,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
 dependencies = [
  "libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
  "libz-sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
- "openssl-sys 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
+ "openssl-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
  "pkg-config 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
 ]
 
 [[package]]
 name = "docopt"
-version = "0.6.63"
+version = "0.6.64"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 dependencies = [
  "regex 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)",
  "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)",
+ "strsim 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
 ]
 
 [[package]]
@@ -110,7 +111,7 @@ dependencies = [
 
 [[package]]
 name = "git2-curl"
-version = "0.2.3"
+version = "0.2.4"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 dependencies = [
  "curl 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -150,7 +151,7 @@ dependencies = [
  "libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
  "libssh2-sys 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)",
  "libz-sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
- "openssl-sys 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
+ "openssl-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
  "pkg-config 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
 ]
 
@@ -169,7 +170,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
 dependencies = [
  "libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
  "libz-sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
- "openssl-sys 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
+ "openssl-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
  "pkg-config 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
 ]
 
@@ -215,7 +216,7 @@ dependencies = [
 
 [[package]]
 name = "openssl-sys"
-version = "0.6.1"
+version = "0.6.2"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 dependencies = [
  "gcc 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -268,6 +269,11 @@ name = "semver"
 version = "0.1.19"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 
+[[package]]
+name = "strsim"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+
 [[package]]
 name = "tar"
 version = "0.2.10"
index 0ee9c72ddb07d931c912655d8125afbb056613ae..e7a54b02cc25817bfaa28af3fd1fa7d51763fdc0 100644 (file)
@@ -10,26 +10,26 @@ name = "cargo"
 path = "src/cargo/lib.rs"
 
 [dependencies]
-toml = "0.1.18"
-semver = "0.1.16"
-curl = "0.2.2"
-tar = "0.2.3"
-flate2 = "0.2.0"
-git2 = "0.2.1"
-git2-curl = "0.2.1"
-glob = "0.2.2"
-time = "0.1.19"
-log = "0.3.0"
+curl = "0.2"
+docopt = "0.6"
 env_logger = "0.3"
-docopt = "0.6.45"
-url = "0.2.23"
-rustc-serialize = "0.3.1"
-term = "0.2"
-regex = "0.1.18"
-threadpool = "0.1.4"
-libc = "0.1.2"
-registry = { path = "src/registry" }
+flate2 = "0.2"
+git2 = "0.2"
+git2-curl = "0.2"
+glob = "0.2"
+libc = "0.1"
+log = "0.3"
 num_cpus = "0.1"
+regex = "0.1"
+registry = { path = "src/registry" }
+rustc-serialize = "0.3"
+semver = "0.1"
+tar = "0.2"
+term = "0.2"
+threadpool = "0.1"
+time = "0.1"
+toml = "0.1"
+url = "0.2"
 
 [target.i686-pc-windows-gnu]
 dependencies = { winapi = "0.1", advapi32-sys = "0.1", kernel32-sys = "0.1" }
index 3447d643e421533103f1f0e097e797efd61bfc1e..6008959d3a1a6b5f20343a0a0221bc674554b6fe 100644 (file)
@@ -1 +1 @@
-2015-04-04
+2015-04-29